create table "ContactDetails" (
	"Id" SERIAL PRIMARY KEY,	
	"Details" text,
	"PatientId" integer,
	"Type" integer,
	"CreatedDate" timestamp without time zone,
	"CreatedBy" integer,
	"ModifiedBy" integer,
	"ModifiedDate" timestamp without time zone,
	"IsActive" boolean NOT NULL
	);